home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / fgl110c.zip / 03-02.C < prev    next >
Text File  |  1992-01-31  |  194b  |  16 lines

  1. #include <fastgraf.h>
  2.  
  3. void main(void);
  4.  
  5. void main()
  6. {
  7.    fg_setmode(3);
  8.    fg_cursor(0);
  9.  
  10.    fg_setcolor(15);
  11.    fg_text("Hello, world.",13);
  12.    fg_waitkey();
  13.  
  14.    fg_reset();
  15. }
  16.